home *** CD-ROM | disk | FTP | other *** search
/ It's Naomi! / It's Naomi!.iso / pc / dmov / main.dir / 00044.ls < prev    next >
Encoding:
Text File  |  1997-09-13  |  430 b   |  23 lines

  1. on exitFrame
  2.   repeat with i = 11 to 15
  3.     puppetSprite(i, 1)
  4.     if rollOver(i) then
  5.       set the memberNum of sprite i to i + 10
  6.       next repeat
  7.     end if
  8.     set the memberNum of sprite i to i
  9.   end repeat
  10.   if not soundBusy(2) then
  11.     sound playFile 2, "@:MOVIE:SOUND:SOUND01"
  12.   end if
  13.   updateStage()
  14.   go(the frame)
  15. end
  16.  
  17. on enterFrame
  18.   repeat with i = 11 to 25
  19.     puppetSprite(i, 0)
  20.   end repeat
  21.   updateStage()
  22. end
  23.